home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / winlib1.zip / EXAMPLES.ZIP / EXAM129.C < prev    next >
Text File  |  1991-01-05  |  415b  |  16 lines

  1.   #include <window.h>
  2.  
  3.   main()
  4.   {
  5.     WindowInitializeSystem();
  6.     MoveCursor(1,1,0);
  7.     VideoWriterString("Press a key to hide the cursor",1,1);
  8.     GET_KEY();
  9.     HideCursor();
  10.     VideoWriterString("Press a key to change cursor to a block",2,1);
  11.     GET_KEY();
  12.     BlockCursor();
  13.     VideoWriterString("Press a key to change cursor to a thin cursor",3,1);
  14.     GET_KEY();
  15.     ThinCursor();
  16.   }